Skip to main content

Verify User Email Public by UserId and Token

GET /api/v1/users/{userId}/verify/{token}/email/public

Description

Verify a user's email publicly using their user ID and token.

Path Parameters

NameTypeDescription
userIdstringThe ID of the user (path)
tokenstringThe verification token (path)

Request Headers

NameTypeDescription
NoneNo headers required

Request Body

  • Content Type: application/json

No request body is required.

Example

GET /api/v1/users/{userId}/verify/{token}/email/public

Response Code: 200 - OK

Description

Email verified successfully.

Method: GET

>http://your-api-url/api/v1/users/{userId}/verify/{token}/email/public

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request GET \ 
--url /api/v1/users/{userId}/verify/{token}/email/public \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!